home *** CD-ROM | disk | FTP | other *** search
/ CD Charme 1 / CD Charme 01.iso / mac / hybride / GLOWING / HOLO / HOLODECK.DIR / 00060_Script_60 < prev    next >
Text File  |  1994-11-01  |  1KB  |  35 lines

  1. on DontMindDoYou
  2.   global userName
  3.   set the puppet of sprite 20 to TRUE
  4.   set the visible of sprite 20 to TRUE
  5.   --
  6.   if userName = "BadBoy" then
  7.     set the castNum of sprite 20 to the number of cast "Q1BBOY.MOV"
  8.     set curMovie = "Q1BBOY.MOV"
  9.   else if userName = "GoodLookin" then
  10.     set the castNum of sprite 20 to the number of cast "Q1GOOD.MOV"
  11.     set curMovie = "Q1GOOD.MOV"
  12.   else if userName = "Sweetheart" then
  13.     set the castNum of sprite 20 to the number of cast "Q1SWEET.MOV"
  14.     set curMovie = "Q1SWEET.MOV"
  15.   else if userName = "Stud" then
  16.     set the castNum of sprite 20 to the number of cast "Q1STUD.MOV"
  17.     set curMovie = "Q1STUD.MOV"
  18.   else
  19.     set userName = "Sweetheart"
  20.     set the castNum of sprite 20 to the number of cast "Q1SWEET.MOV"
  21.     set curMovie = "Q1SWEET.MOV"
  22.   end if
  23.   
  24.   LoadMovie curMovie
  25.   --240X180 VIDEO BOX
  26.   --spriteBox 20, 200, 160, 440, 340
  27.   --320x240 Box
  28.   spriteBox 20, 160, 130, 480, 370
  29.   upDateStage
  30.   set the movieRate of sprite 20 to 0
  31.   updateStage
  32.   getQTLen 20
  33.   
  34. end DontMindDoYou
  35.